From 157102aa735b7e26611725e8e62c530b4fe0a830 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Mon, 10 Jun 2013 14:41:51 +0200 Subject: [PATCH] GtkListBox: No need to manually clamp adjustment to focus Now that we use real widgets for rows the focus_vadjustment is enough. --- gtk/gtklistbox.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/gtk/gtklistbox.c b/gtk/gtklistbox.c index 55402c310d..97c25d2151 100644 --- a/gtk/gtklistbox.c +++ b/gtk/gtklistbox.c @@ -781,14 +781,6 @@ gtk_list_box_update_cursor (GtkListBox *list_box, priv->cursor_row = row; gtk_widget_grab_focus (GTK_WIDGET (row)); gtk_widget_queue_draw (GTK_WIDGET (row)); - if (row != NULL && priv->adjustment != NULL) - { - GtkAllocation allocation; - gtk_widget_get_allocation (GTK_WIDGET (list_box), &allocation); - gtk_adjustment_clamp_page (priv->adjustment, - priv->cursor_row->priv->y + allocation.y, - priv->cursor_row->priv->y + allocation.y + priv->cursor_row->priv->height); - } _gtk_list_box_accessible_update_cursor (list_box, row); } -- 2.30.2